home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #1 / Amiga Plus 1995 #1.iso / fish-disketten / fish_941-950 / d948 / viruszii / install.script < prev    next >
Text File  |  1994-12-13  |  1KB  |  43 lines

  1. ; Script file to install reqtools.library and decrunch.library.
  2.  
  3. FailAt 21
  4. Echo "VirusZ Library Installation Script"
  5.  
  6. Version >NIL: exec.library 37
  7. If WARN
  8.    Echo "You need Kickstart 2.0 or higher."
  9.    Skip END
  10. EndIf
  11.  
  12. Version >NIL: LIBS:reqtools.library
  13. If NOT ERROR
  14.    Echo "Version of reqtools.library already installed:"
  15.    Version LIBS:reqtools.library
  16. EndIf
  17. Ask "Install reqtools.library?"
  18. If NOT WARN
  19.    Echo "Installation of reqtools.library aborted!"
  20.    Skip INSTALLDECR
  21. EndIf
  22. Copy libs/reqtools.library LIBS:reqtools.library
  23. Echo "reqtools.library copied to your LIBS: directory."
  24.  
  25. Lab INSTALLDECR
  26. Version >NIL: LIBS:decrunch.library
  27. If NOT ERROR
  28.    Echo "Version of decrunch.library already installed:"
  29.    Version LIBS:decrunch.library
  30. EndIf
  31. Ask "Install decrunch.library?"
  32. If NOT WARN
  33.    Echo "Installation of decrunch.library aborted!"
  34.    Skip END
  35. EndIf
  36. Copy libs/decrunch.library LIBS:decrunch.library
  37. Echo "decrunch.library copied to your LIBS: directory."
  38.  
  39. Lab END
  40. Echo "End of installation script!"
  41. Wait 4
  42. EndCLI >NIL:
  43.